Auto merge of #2909 - jonathandturner:debug_release_at_bottom, r=alexcrichton
authorbors <bors@rust-lang.org>
Mon, 25 Jul 2016 23:32:33 +0000 (16:32 -0700)
committerGitHub <noreply@github.com>
Mon, 25 Jul 2016 23:32:33 +0000 (16:32 -0700)
Switch to output release/debug after compile

This is similar to https://github.com/rust-lang/cargo/pull/2896 but instead of inline, it puts an indicator at the bottom showing if it was a release or debug build.

```
jturner-23759:cargo jturner$ ./target/release/cargo build
Finished debug (unoptimized + debuginfo) build.
jturner-23759:cargo jturner$ ./target/release/cargo build --release
Finished release (optimized) build.
```


Trivial merge